只需要将图片放到 public目录下 然后以此路径为起点设置路径就可以了
使用component style
const Container = styled.div`
background: url("wave.svg");
`;
直接使用Public資料夾中的圖片檔案(SVG可以)
來源:https://blog.csdn.net/printf_hello/article/details/118887651
其他方法:
https://medium.com/itsoktomakemistakes/react-create-react-app-svg-icons-styled-component-570b4e9f07b
<Image>
放在最上面import Image from "next/image";
''
2. 將要放入的圖片寫成引入的自定義名稱
import Iconinfo from "../public/Icon/Icon-info.svg";
<Image>
標籤,src需用{}包起來自定義名稱,alt標籤一定要寫,完成如下<Image src={Iconinfo} alt="Picture of the author" />